home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000362_news@columbia.edu_Thu Sep 14 20:04:57 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  1KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12947
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 15 Sep 1995 05:18:38 -0400
  3. Received: by apakabar.cc.columbia.edu id AA28646
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 15 Sep 1995 05:18:36 -0400
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!plug.news.pipex.net!pipex!dish.news.pipex.net!pipex!wave.news.pipex.net!pipex!tank.news.pipex.net!pipex!news.sprintlink.net!in1.uu.net!news.sandia.gov!usenet
  6. From: TQT <tqthai@sandia.gov>
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: 24-bit CRC
  9. Date: 14 Sep 1995 20:04:57 GMT
  10. Organization: Sandia National Laboratories
  11. Lines: 4
  12. Message-Id: <43a1ta$8pp@news.sandia.gov>
  13. Nntp-Posting-Host: sasg353.sandia.gov
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. Through the PROCOM (a PC communication software) document I learn that
  17. Kermit uses 24 bit CRC for error detection/correction. Does anyone know 
  18. what is the generating polynomial for this CRC-24? Any reference to 
  19. a list of 24th order CRC generating polynomials will be much appreciated. 
  20.  
  21.  msscom.asm in MS-DOS Kermit:
  22.  
  23. ; The CRC is based on the SDLC polynomial: x**16 + x**12 + x**5 + 1.
  24. This is also known as CCITT-16.
  25.     Joe D.